home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Taifun / Taifun 005 (1987-02-15)(Ossowski, Stefan)(DE)(PD).zip / Taifun 005 (1987-02-15)(Ossowski, Stefan)(DE)(PD).adf / Ray-Tracing-Con-Set / arc22.doc < prev    next >
Text File  |  1987-03-04  |  5KB  |  148 lines

  1. AmigArc - Archive utility, Version 0.22, created on 01/30/87 at 21:58
  2.  
  3. Compatible with ARC v5.0
  4.  
  5. (C) COPYRIGHT 1986,87 by Raymond S. Brand; ALL RIGHTS RESERVED
  6. (C) COPYRIGHT 1985,86 by System Enhancement Associates; ALL RIGHTS RESERVED
  7.  
  8. Please refer all comments/inquiries/contributions to:
  9.  
  10.    US Snail:
  11.          Raymond S. Brand
  12.          503 Rowland Road
  13.          Fairfield Ct. 06430
  14.  
  15.    Modem:
  16.          Brand X Fido/SEAdog (141/255)
  17.          (203) 255-7729
  18.          300/1200/2400
  19.  
  20. Hello,
  21.    AmigArc v0.22 is a version of ARC v5.0 ported to the Amiga. As such, it
  22. can perform all of the normal ARC commands on '.ARC' files (for information
  23. on ARC commands, find a copy of ARC.DOC).
  24.  
  25. Changes for version 0.22:
  26.    1) No noteworthy (none were reported!) bugs were fixed in this release
  27.       and some of the code was cleaned up, and error reports now go to
  28.       stderr instead of stdout.
  29.    2) Control C is now supported (but could be better).
  30.    3) This version was compiled using Lattice 3.10 which found some dormant
  31.       bugs, and should be a little faster.
  32.    4) File dates are now set when a file is extracted even when the current
  33.       directory is not the target directory.
  34.  
  35. Known bugs remaining:
  36.    1) The NOT operator for wild card matching does not always work. The fix
  37.       looks to be a major rewrite of the WCmatch routines (sigh...).
  38.  
  39. Items of Note:
  40.    1) The Run command will NOT be supported.
  41.  
  42.    2) The current version uses the MSdos '.ARC' file structure. This means
  43.       that file names should follow MSdos conventions. The next version will
  44.       be able to use the full AmigaDos filenames, and will have an MSdos
  45.       compatibility option.
  46.  
  47.    3) Wild Cards are permitted in the filename portion of the template, but
  48.       NOT in the path. The Wild Card scheme used is:
  49.  
  50. /*
  51.  * WCmatch: Function to determine if the first string matches
  52.  *    the template in the second string. If the third parameter
  53.  *    is zero then case does NOT matter.
  54.  *
  55.  *    Returns:
  56.  *       1 if string matches template.
  57.  *       0 if string does NOT match template.
  58.  *       Any other value indicates a template syntax error.
  59.  *
  60.  *    19860308 Raymond S. Brand
  61.  *
  62.  *    Version 0.08
  63.  *
  64.  *    The following describes the syntax of a valid template.
  65.  *       Items in braces ('{' and '}') may be repeated zero or more times.
  66.  * 
  67.  * <template>  := <AGroup>
  68.  * 
  69.  * <AGroup>    := <PGroup>{&<PGroup>}  'AND'
  70.  *
  71.  * <PGroup>    := <LGroup>{|<LGroup>}  'OR'
  72.  *
  73.  * <Group>     := <LGroup>{|<LGroup>}  'or'
  74.  * 
  75.  * <LGroup>    := <SGroup>{<SGroup>}   'Match-String'
  76.  * 
  77.  * <SGroup>    := (<Group>)            'grouping'
  78.  *             := %                    'End-of-Name'
  79.  *             := ^<SGroup>            'NOT'
  80.  *             := <Literal1>
  81.  *             := ?                    'Any-Character'
  82.  *             := #<SGroup><MGroup>    'Zero-or-More Followed-By'
  83.  *             := *<MGroup>            'Zero-or-More-of-Any-Character'
  84.  *             := [<EnumList>]         'Enumeration-List'
  85.  * 
  86.  * <MGroup>    := <LGroup>
  87.  *             :=
  88.  *
  89.  * <EnumList>  := <EnumPart>{,<EnumPart>}
  90.  *
  91.  * <EnumPart>  := <Literal2>
  92.  *             := <Literal2>-<Literal2>   'All-Characters-From To'
  93.  * 
  94.  * <Literal1>  := <any printing character except:
  95.  *                   '#', '%', '^', '&', '*', '(', ')', '|', '\', '[',
  96.  *                   ']' and '?'>
  97.  *             := \<any printing character including the above>
  98.  * 
  99.  * <Literal2>  := <any printing character except:
  100.  *                   '\', '[', ']', '-' and ','>
  101.  *             := \<any printing character including the above>
  102.  *
  103.  *
  104.  *    NOTES:
  105.  *       The 'AND' and the 'OR' functions have an implicit 'End-of-Name'
  106.  *          function before their respective operators.
  107.  *       The 'or' function moves the internal name pointer just past the
  108.  *          first match that it finds.
  109.  *       The second form of <EnumPart> matches the current name character
  110.  *          if the first literal is less than or equal to the current name
  111.  *          character, and the current name character is less than or equal
  112.  *          to the second literal. Or if the first literal is less than the
  113.  *          current name character, or the current name character is less
  114.  *          than the second literal when the first literal is greater than
  115.  *          the second literal. An <EnumPart> will never match the name
  116.  *          terminator. e.g. 'a-f' will match 'a', 'b', 'c', 'd', 'e' and
  117.  *          'f'; Whereas, 'f-a' will match all characters except 'a', 'b',
  118.  *          'c', 'd', 'e' and 'f'.
  119.  *       The '*' operator is equivalent to '#?'.
  120.  */ 
  121.  
  122.    4) If you experience a problem or bug in the program, please send
  123.       a message describing what you were doing and what happened (be
  124.       specific) at:
  125.  
  126.          Brand X Fido/SEAdog (141/255)
  127.          (203) 255-7729
  128.  
  129.    5) Do NOT bother System Enhancement Associates about this program. They
  130.       have little to do with the Amiga version of ARC.
  131.  
  132.    6) Suggestions, comments, criticisms, etc. are welcome and encouraged.
  133.  
  134.    7) This version of AmigArc does not have a "timeout" but please try to
  135.       always use the latest version available.
  136.  
  137.    8) For the latest version of AmigArc check Brand X Fido or Amuse.
  138.  
  139.    9) To speed compression, ASSIGN ARCTEMP: RAM:
  140.  
  141.   10) The correct file size for AmigArc.022 is 50304 bytes.
  142.  
  143.  
  144.  
  145.                                  Raymond S. Brand
  146.                                       RSBX
  147.  
  148.